home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
mxcode
/
adnmod02
/
modtest.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1995-02-06
|
369 b
|
21 lines
uses modunit,crt;
begin
if paramcount < 1 then halt(1);
gusfind;
gusreset;
init_mod;
load_mod(paramstr(1),true);
if mod_error <> 0 then begin
writeln('Error loading mod!');
halt(1);
end;
start_playing;
writeln('Playing...');
writeln('Press ''ANY'' key to stop');
readkey;
stop_playing;
free_mod;
gusdeinit;
end.